Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the npm group across 1 directory with 16 updates #90

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 30, 2024

Bumps the npm group with 16 updates in the / directory:

Package From To
@effect/schema 0.64.16 0.74.1
@effect/typeclass 0.23.15 0.27.4
effect 2.4.15 3.8.4
fast-check 3.17.1 3.22.0
typescript 5.4.3 5.6.2
@changesets/cli 2.27.1 2.27.8
@effect/docgen 0.4.0 0.4.5
@faker-js/faker 8.4.1 9.0.3
@typescript-eslint/eslint-plugin 7.4.0 8.7.0
@typescript-eslint/parser 7.4.0 8.7.0
ajv 8.12.0 8.17.1
eslint 8.57.0 9.11.1
eslint-plugin-deprecation 2.0.0 3.0.0
husky 9.0.11 9.1.6
tsup 8.0.2 8.3.0
vitest 1.4.0 2.1.1

Updates @effect/schema from 0.64.16 to 0.74.1

Release notes

Sourced from @​effect/schema's releases.

@​effect/schema@​0.74.1

Patch Changes

  • #3669 734eae6 Thanks @​gcanti! - Add description annotation to the encoded part of NumberFromString.

    Before

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.NumberFromString
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string"
    }
    */

    After

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.NumberFromString
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string",
    "description": "a string that will be parsed into a number"
    }
    */

  • #3667 fd83d0e Thanks @​gcanti! - Remove default json schema annotations from string, number and boolean.

    Before

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.String.annotations({ examples: ["a", "b"] })
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {

... (truncated)

Changelog

Sourced from @​effect/schema's changelog.

0.74.1

Patch Changes

  • #3669 734eae6 Thanks @​gcanti! - Add description annotation to the encoded part of NumberFromString.

    Before

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.NumberFromString
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string"
    }
    */

    After

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.NumberFromString
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "string",
    "description": "a string that will be parsed into a number"
    }
    */

  • #3667 fd83d0e Thanks @​gcanti! - Remove default json schema annotations from string, number and boolean.

    Before

    import { JSONSchema, Schema } from "@effect/schema"
    const schema = Schema.String.annotations({ examples: ["a", "b"] })
    console.log(JSON.stringify(JSONSchema.make(schema), null, 2))
    /*

... (truncated)

Commits

Updates @effect/typeclass from 0.23.15 to 0.27.4

Release notes

Sourced from @​effect/typeclass's releases.

@​effect/typeclass@​0.27.4

Patch Changes

  • Updated dependencies [4509656]:
    • effect@3.8.4
Changelog

Sourced from @​effect/typeclass's changelog.

0.27.4

Patch Changes

  • Updated dependencies [4509656]:
    • effect@3.8.4

0.27.3

Patch Changes

  • Updated dependencies [bb5ec6b]:
    • effect@3.8.3

0.27.2

Patch Changes

  • Updated dependencies [f0d8ef1]:
    • effect@3.8.2

0.27.1

Patch Changes

0.27.0

Patch Changes

0.26.3

Patch Changes

  • Updated dependencies [35a0f81]:
    • effect@3.7.3

0.26.2

Patch Changes

0.26.1

... (truncated)

Commits

Updates effect from 2.4.15 to 3.8.4

Release notes

Sourced from effect's releases.

effect@3.8.4

Patch Changes

Changelog

Sourced from effect's changelog.

3.8.4

Patch Changes

3.8.3

Patch Changes

3.8.2

Patch Changes

3.8.1

Patch Changes

  • #3624 10bf621 Thanks @​fubhy! - Fixed double firing of cron schedules in cases where the current time matched the initial interval.

  • #3623 ae36fa6 Thanks @​fubhy! - Allow CRLF characters in base64 encoded strings.

3.8.0

Minor Changes

  • #3541 fcfa6ee Thanks @​Schniz! - add Logger.withLeveledConsole

    In browsers and different platforms, console.error renders differently than console.info. This helps to distinguish between different levels of logging. Logger.withLeveledConsole takes any logger and calls the respective Console method based on the log level. For instance, Effect.logError will call Console.error and Effect.logInfo will call Console.info.

    To use it, you can replace the default logger with a Logger.withLeveledConsole logger:

    import { Logger, Effect } from "effect"
    const loggerLayer = Logger.withLeveledConsole(Logger.stringLogger)
    Effect.gen(function* () {
    yield* Effect.logError("an error")
    yield* Effect.logInfo("an info")
    }).pipe(Effect.provide(loggerLayer))

  • #3541 bb9931b Thanks @​KhraksMamtsov! - Made Ref, SynchronizedRed and SubscriptionRef a subtype of Effect

  • #3541 5798f76 Thanks @​tim-smart! - add Semaphore.withPermitsIfAvailable

... (truncated)

Commits

Updates fast-check from 3.17.1 to 3.22.0

Release notes

Sourced from fast-check's releases.

Graphemes support on fc.string

[Code][Diff]

Features

  • (PR#5222) Support for grapheme on fc.string
  • (PR#5233) Mark as deprecated most of char and string arbitraries
  • (PR#5238) Deprecate bigInt's alternatives

Fixes

  • (PR#5237) CI: Drop TypeScript rc release channel
  • (PR#5241) CI: Move to changeset
  • (PR#5199) Doc: Publish release note for 3.21.0
  • (PR#5240) Doc: Better string's deprecation note in documentation
  • (PR#5203) Refactor: Add missing types on exported

Support customisable versions on uuid

[Code][Diff]

Features

  • (PR#5172) Support UUID versions [1-15] on uuidV
  • (PR#5189) Deprecate uuidV in favor of uuid
  • (PR#5188) Customize versions directly from uuid

Fixes

  • (PR#5190) CI: Support npm publish on other tags
  • (PR#5124) Doc: Publish release note for 3.20.0
  • (PR#5137) Doc: Add missing options in the documentation for float and double
  • (PR#5142) Doc: Better width for stargazer badge in the documentation
  • (PR#5143) Doc: Document Faker integration
  • (PR#5144) Doc: Add support us page in our documentation

New arbitraries to alter shrinking capabilities

[Code][Diff]

Features

  • (PR#5047) Introduce new fc.noShrink arbitrary
  • (PR#5050) Introduce new fc.noBias arbitrary
  • (PR#5006) Add ability to limit shrink path
  • (PR#5112) Simplify limitShrink before releasing

Fixes

  • (PR#5013) CI: Drop verbosity flag at unpack step in CI
  • (PR#5074) CI: Check types with multiple TypeScript
  • (PR#5015) Doc: Release note for 3.19.0

... (truncated)

Changelog

Sourced from fast-check's changelog.

3.22.0

Graphemes support on fc.string [Code][Diff]

Features

  • (PR#5222) Support for grapheme on fc.string
  • (PR#5233) Mark as deprecated most of char and string arbitraries
  • (PR#5238) Deprecate bigInt's alternatives

Fixes

  • (PR#5237) CI: Drop TypeScript rc release channel
  • (PR#5241) CI: Move to changeset
  • (PR#5199) Doc: Publish release note for 3.21.0
  • (PR#5240) Doc: Better string's deprecation note in documentation
  • (PR#5203) Refactor: Add missing types on exported

3.21.0

Support customisable versions on uuid [Code][Diff]

Features

  • (PR#5172) Support UUID versions [1-15] on uuidV
  • (PR#5189) Deprecate uuidV in favor of uuid
  • (PR#5188) Customize versions directly from uuid

Fixes

  • (PR#5190) CI: Support npm publish on other tags
  • (PR#5124) Doc: Publish release note for 3.20.0
  • (PR#5137) Doc: Add missing options in the documentation for float and double
  • (PR#5142) Doc: Better width for stargazer badge in the documentation
  • (PR#5143) Doc: Document Faker integration
  • (PR#5144) Doc: Add support us page in our documentation

3.20.0

New arbitraries to alter shrinking capabilities [Code][Diff]

Features

... (truncated)

Commits
  • 4e04fda 🔖 Update CHANGELOG.md for fast-check@3.22.0, @​fast-check/vitest@​0.1.3, @​fast-...
  • 1baccc5 🗑️ Deprecate bigInt's alternatives (#5238)
  • 3f4f120 🗑️ Mark as deprecated most of char and string arbitraries (#5233)
  • 9f5ec86 ✨ Support for grapheme on fc.string (#5222)
  • 7d3a25f ⬆️ Update dependency @​microsoft/api-extractor to ^7.47.7 (#5230)
  • 04c9cfd ⬆️ Update dependency typedoc to ^0.26.6 (#5223)
  • acb87ef ⬆️ Update dependency @​microsoft/api-extractor to ^7.47.6 (#5208)
  • 49746db ♻️ Add missing types on exported (#5203)
  • 1801d1a ⬆️ Update dependency @​types/node to ^20.14.15 (#5197)
  • bec5d59 🔖 Update CHANGELOG.md for fast-check@3.21.0 (#5194)
  • Additional commits viewable in compare view

Updates typescript from 5.4.3 to 5.6.2

Release notes

Sourced from typescript's releases.

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • e6914a5 Bump version to 5.6.1-rc and LKG
  • 34121c4 Update LKG
  • 2a30c2a Merge remote-tracking branch 'origin/main' into release-5.6
  • 936a79b Expose TypeChecker. getAwaitedType to public (#59268)
  • Additional commits viewable in compare view

Updates @changesets/cli from 2.27.1 to 2.27.8

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.27.8

Patch Changes

@​changesets/cli@​2.27.7

Patch Changes

  • #1047 d108fa6 Thanks @​patzick! - Fixed a crash that could occur when depending on a tagged version of another workspace package.

  • #1400 dd6e5bb Thanks @​Andarist! - Fixed a crash that prevented the CLI from running in a scenario when a workspace depends on the root workspace

  • Updated dependencies [d108fa6, dd6e5bb, dd6e5bb]:

    • @​changesets/apply-release-plan@​7.0.4
    • @​changesets/config@​3.0.2
    • @​changesets/get-dependents-graph@​2.1.1
    • @​changesets/assemble-release-plan@​6.0.3
    • @​changesets/get-release-plan@​4.0.3

@​changesets/cli@​2.27.6

Patch Changes

  • #1392 f295b3e Thanks @​bluwy! - Replace meow dependency with mri to reduce the number of transitive dependencies

  • #1390 6a3452e Thanks @​bluwy! - Display changeset status --verbose in list form and remove tty-table dependency

@​changesets/cli@​2.27.5

Patch Changes

  • #1370 5e9d33a Thanks @​Andarist! - Fixed a regression that caused changeset version to fail on packages having a dev dependency on a skipped package.

... (truncated)

Commits

Updates @effect/docgen from 0.4.0 to 0.4.5

Release notes

Sourced from @​effect/docgen's releases.

v0.4.5

Patch Changes

  • 8959440: Fixes the type checking and execution of examples on Windows

v0.4.4

Patch Changes

  • 00ce7a0: upgrade ts-morph to 23.0.0
  • 5b888e5: srcDir and outDir fields in docgen.json are currently ignored. With this patch, they are taken into account

v0.4.3

Patch Changes

  • 7add2b9: update dependencies

v0.4.2

Patch Changes

  • 619a0e3: use @​effect/markdown-toc instead of github dependency

v0.4.1

Patch Changes

  • b9bfab0: add reporting of tsc and tsx errors, closes #66
Changelog

Sourced from @​effect/docgen's changelog.

0.4.5

Patch Changes

  • 8959440: Fixes the type checking and execution of examples on Windows

0.4.4

Patch Changes

  • 00ce7a0: upgrade ts-morph to 23.0.0
  • 5b888e5: srcDir and outDir fields in docgen.json are currently ignored. With this patch, they are taken into account

0.4.3

Patch Changes

  • 7add2b9: update dependencies

0.4.2

Patch Changes

  • 619a0e3: use @​effect/markdown-toc instead of github dependency

0.4.1

Patch Changes

  • b9bfab0: add reporting of tsc and tsx errors, closes #66
Commits

Updates @faker-js/faker from 8.4.1 to 9.0.3

Release notes

Sourced from @​faker-js/faker's releases.

v9.0.3

What's Changed

New Contributors

Full Changelog: faker-js/faker@v9.0.2...v9.0.3

v9.0.2

What's Changed

Full Changelog: faker-js/faker@v9.0.1...v9.0.2

v9.0.1

What's Changed

... (truncated)

Changelog

Sourced from @​faker-js/faker's changelog.

9.0.3 (2024-09-26)

Changed Locales

  • locale: update french legal entity types (#3142) (d6bceb6)

Bug Fixes

  • image: fix dataUri with type svg-base64 in browsers (#3144) (78b2a3a)

9.0.2 (2024-09-23)

Bug Fixes

  • locale: improve pt_PT location and person data (#3020) (3e47ee7)

9.0.1 (2024-09-14)

Bug Fixes

9.0.0 (2024-09-02)

No noteworthy changes to

Bumps the npm group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@effect/schema](https://github.com/Effect-TS/effect/tree/HEAD/packages/schema) | `0.64.16` | `0.74.1` |
| [@effect/typeclass](https://github.com/Effect-TS/effect/tree/HEAD/packages/typeclass) | `0.23.15` | `0.27.4` |
| [effect](https://github.com/Effect-TS/effect/tree/HEAD/packages/effect) | `2.4.15` | `3.8.4` |
| [fast-check](https://github.com/dubzzz/fast-check/tree/HEAD/packages/fast-check) | `3.17.1` | `3.22.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.4.3` | `5.6.2` |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.27.1` | `2.27.8` |
| [@effect/docgen](https://github.com/effect-ts/docgen) | `0.4.0` | `0.4.5` |
| [@faker-js/faker](https://github.com/faker-js/faker) | `8.4.1` | `9.0.3` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.4.0` | `8.7.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.4.0` | `8.7.0` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.12.0` | `8.17.1` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.11.1` |
| [eslint-plugin-deprecation](https://github.com/gund/eslint-plugin-deprecation) | `2.0.0` | `3.0.0` |
| [husky](https://github.com/typicode/husky) | `9.0.11` | `9.1.6` |
| [tsup](https://github.com/egoist/tsup) | `8.0.2` | `8.3.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.4.0` | `2.1.1` |



Updates `@effect/schema` from 0.64.16 to 0.74.1
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/schema/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/schema@0.74.1/packages/schema)

Updates `@effect/typeclass` from 0.23.15 to 0.27.4
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/typeclass/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/@effect/typeclass@0.27.4/packages/typeclass)

Updates `effect` from 2.4.15 to 3.8.4
- [Release notes](https://github.com/Effect-TS/effect/releases)
- [Changelog](https://github.com/Effect-TS/effect/blob/main/packages/effect/CHANGELOG.md)
- [Commits](https://github.com/Effect-TS/effect/commits/effect@3.8.4/packages/effect)

Updates `fast-check` from 3.17.1 to 3.22.0
- [Release notes](https://github.com/dubzzz/fast-check/releases)
- [Changelog](https://github.com/dubzzz/fast-check/blob/main/packages/fast-check/CHANGELOG.md)
- [Commits](https://github.com/dubzzz/fast-check/commits/v3.22.0/packages/fast-check)

Updates `typescript` from 5.4.3 to 5.6.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.3...v5.6.2)

Updates `@changesets/cli` from 2.27.1 to 2.27.8
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.27.1...@changesets/cli@2.27.8)

Updates `@effect/docgen` from 0.4.0 to 0.4.5
- [Release notes](https://github.com/effect-ts/docgen/releases)
- [Changelog](https://github.com/Effect-TS/docgen/blob/main/CHANGELOG.md)
- [Commits](Effect-TS/docgen@v0.4.0...v0.4.5)

Updates `@faker-js/faker` from 8.4.1 to 9.0.3
- [Release notes](https://github.com/faker-js/faker/releases)
- [Changelog](https://github.com/faker-js/faker/blob/next/CHANGELOG.md)
- [Commits](faker-js/faker@v8.4.1...v9.0.3)

Updates `@typescript-eslint/eslint-plugin` from 7.4.0 to 8.7.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.7.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.4.0 to 8.7.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.7.0/packages/parser)

Updates `ajv` from 8.12.0 to 8.17.1
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.12.0...v8.17.1)

Updates `eslint` from 8.57.0 to 9.11.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.11.1)

Updates `eslint-plugin-deprecation` from 2.0.0 to 3.0.0
- [Release notes](https://github.com/gund/eslint-plugin-deprecation/releases)
- [Changelog](https://github.com/gund/eslint-plugin-deprecation/blob/master/CHANGELOG.md)
- [Commits](gund/eslint-plugin-deprecation@v2.0.0...v3.0.0)

Updates `husky` from 9.0.11 to 9.1.6
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.6)

Updates `tsup` from 8.0.2 to 8.3.0
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.0.2...v8.3.0)

Updates `vitest` from 1.4.0 to 2.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: "@effect/schema"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@effect/typeclass"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: effect
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: fast-check
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@changesets/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@effect/docgen"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@faker-js/faker"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: ajv
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: eslint-plugin-deprecation
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 30, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 7, 2024

Superseded by #91.

@dependabot dependabot bot closed this Oct 7, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-da232cf502 branch October 7, 2024 08:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants